home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / Palettes / Chart / Source / BarChartInspector.h < prev    next >
Text File  |  1995-06-12  |  2KB  |  72 lines

  1. // -------------------------------------------------------------------------------------
  2. // BarChartInspector.m
  3. // Martin D. Flynn, NeXT Computer, Inc.
  4. // -------------------------------------------------------------------------------------
  5.  
  6. #import <apps/InterfaceBuilder.h>
  7.  
  8. // -------------------------------------------------------------------------------------
  9.  
  10. @interface BarChartInspector : IBInspector
  11. {
  12.  
  13.     id                    drawInColorBtn;
  14.  
  15.     id                    backgroundCGBox;
  16.     id                  backgroundColorWell;
  17.     id                  backgroundGrayMatrix;
  18.     id                    backgroundTransSwitch;
  19.  
  20.     id                    chartCGBox;
  21.     id                    dftChartColorWell;
  22.     id                    dftChartGrayMatrix;
  23.     
  24.     id                    dftChartTypeMatrix;
  25.  
  26.     id                    inspectorBox;
  27.     NXRect                inspectorFrame;
  28.     
  29.     id                    generalBox;
  30.  
  31.     id                    xAxisBox;
  32.     id                    xGridCGBox;
  33.     id                  xGridGrayMatrix;
  34.     id                  xGridColorWell;
  35.     id                    xGridDraw;
  36.     id                    xDataRangeLo;
  37.     id                    xDataRangeHi;
  38.     id                    xLogScaling;
  39.     id                    xTickIncrement;
  40.     id                    xShowLabels;
  41.     id                    xLabelRotate;
  42.     
  43.     id                    yAxisBox;
  44.     id                    yGridCGBox;
  45.     id                  yGridGrayMatrix;
  46.     id                  yGridColorWell;
  47.     id                    yGridDraw;
  48.     id                    yDataRangeLo;
  49.     id                    yDataRangeHi;
  50.     id                    yLogScaling;
  51.     id                    yTickIncrement;
  52.     id                    yShowLabels;
  53.     id                    yLabelRotate;
  54.  
  55. }
  56.  
  57. // -------------------------------------------------------------------------------------
  58.  
  59. - init;
  60. - ok:sender;
  61. - revert:sender;
  62.  
  63. - setBackgroundTransState:sender;
  64. - setXGridDrawState:sender;
  65. - setYGridDrawState:sender;
  66. - setColorGrayMode:sender;
  67. - inspectGeneral:sender;
  68. - inspectXAxis:sender;
  69. - inspectYAxis:sender;
  70.  
  71. @end
  72.